home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 February / EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso / enigma / earcd / emula / arosdv19.lha / AROS / config / i386-emul / setsr.s < prev    next >
Text File  |  1996-10-24  |  1KB  |  60 lines

  1. #    (C) 1995-96 AROS - The Amiga Replacement OS
  2. #    $Id: setsr.s,v 1.6 1996/10/24 15:51:12 aros Exp $
  3. #    $Log: setsr.s,v $
  4. #    Revision 1.6  1996/10/24 15:51:12  aros
  5. #    Use the official AROS macros over the __AROS versions.
  6. #
  7. #    Revision 1.5  1996/09/11 16:54:29  digulla
  8. #    Always use __AROS_SLIB_ENTRY() to access shared external symbols, because
  9. #        some systems name an external symbol "x" as "_x" and others as "x".
  10. #        (The problem arises with assembler symbols which might differ)
  11. #
  12. #    Revision 1.4  1996/08/23 16:49:22    digulla
  13. #    With some systems, .align 16 aligns to 64K instead of 16bytes. Therefore
  14. #    I replaced it with .balign which does what we want.
  15. #
  16. #    Revision 1.3  1996/08/13 14:03:20    digulla
  17. #    Added standard headers
  18. #
  19. #    Revision 1.2  1996/08/01 17:41:20    digulla
  20. #    Added standard header for all files
  21. #
  22. #    Desc:
  23. #    Lang:
  24.  
  25. #*****************************************************************************
  26. #
  27. #   NAME
  28. #    AROS_LH0(void, SetSR,
  29. #
  30. #   LOCATION
  31. #    struct ExecBase *, SysBase, 24, Exec)
  32. #
  33. #   FUNCTION
  34. #
  35. #   INPUTS
  36. #
  37. #   RESULT
  38. #
  39. #   NOTES
  40. #
  41. #   EXAMPLE
  42. #
  43. #   BUGS
  44. #
  45. #   SEE ALSO
  46. #
  47. #   INTERNALS
  48. #
  49. #   HISTORY
  50. #
  51. #******************************************************************************
  52.     .text
  53.     .balign 16
  54.     .globl    _Exec_SetSR
  55.     .type    _Exec_SetSR,@function
  56. _Exec_SetSR:
  57.     /* Dummy */
  58.     ret
  59.  
  60.